set select option as selected jquery

43

set select option as selected jquery -

$(document).ready(function() {
    $("#gate option[value='Gateway 2']").prop('selected', true);
    // you need to specify id of combo to set right combo, if more than one combo
});

jquery set select value -

$("div.id_100 select").val("val2");

Comments

Submit
0 Comments